Merge from gnulib.
authorPaul Eggert <eggert@cs.ucla.edu>
Wed, 4 Jul 2012 08:35:34 +0000 (01:35 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Wed, 4 Jul 2012 08:35:34 +0000 (01:35 -0700)
* lib/alloca.in.h: New version from gnulib, incorporating:
2012-07-03 alloca: add support for HP NonStop TNS/E native

ChangeLog
lib/alloca.in.h

index 43474d5fe4e07de07e65b8e210e9710c7ad46301..d9c420b86a11ed7092aaa1e44015b90a465fd5fd 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2012-07-04  Paul Eggert  <eggert@cs.ucla.edu>
+
+       Merge from gnulib.
+       * lib/alloca.in.h: New version from gnulib, incorporating:
+       2012-07-03 alloca: add support for HP NonStop TNS/E native
+
 2012-07-04  Dmitry Antipov  <dmantipov@yandex.ru>
 
        * configure.in: If --enable-gcc-warnings, disable
index e94eb68c3c82c991afb1f339366ee186da8a7979..d20f4b8f1c3d1d82e144dd6ffc9553845d8d369f 100644 (file)
 #  define alloca _alloca
 # elif defined __DECC && defined __VMS
 #  define alloca __ALLOCA
+# elif defined __TANDEM && defined _TNS_E_TARGET
+#  ifdef  __cplusplus
+extern "C"
+#  endif
+void *_alloca (unsigned short);
+#  pragma intrinsic (_alloca)
+#  define alloca _alloca
 # else
 #  include <stddef.h>
 #  ifdef  __cplusplus